home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000217-20000824 / 000205_news@columbia.edu _Tue Apr 18 14:37:16 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id OAA26975
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 18 Apr 2000 14:37:16 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id OAA25054
  7.     for kermit.misc@watsun.cc.columbia.edu; Tue, 18 Apr 2000 14:11:05 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: "A. B. HUNT (K3531)" <ahunt2@ford.com>
  10. Subject: Change in Kermit Protocol between Kermit V5 and V6
  11. Date: Tue, 18 Apr 2000 13:28:41 -0400
  12. Organization: sys0$11:[hunt]organization
  13. Message-ID: <38FC6309.A499725@ford.com>
  14. To: kermit.misc@columbia.edu
  15.  
  16. We have an application that uses Kermit to download files to a PC from
  17. VAX/OpenVMS.  The PC is running Keaterm which includes Kermit.  The 
  18. VAX/OpenVMS Kermit we used was:
  19.  
  20. C-Kermit 5A(188), 23 Nov 92, OpenVMS VAX
  21.  
  22. When we installed the latest Kermit:
  23.  
  24. C-Kermit 6.0.192, 6 Sep 96, for OpenVMS VAX
  25.  
  26. the procedure broke.  On the PC a KeaTerm macro is being activated which
  27. looks for the Kermit packets and expects a certain format for the
  28. characters wrapped around the packet.
  29.  
  30. The following lines in the middle of macro is the key to the problem.
  31.  
  32. KerSpkt = "^A0 S*^M"    // note the * in this and next string
  33. KerIpkt = "^A0 I*^M"    // is a wild card ie any number of characters
  34.  
  35. As you can see the macro is looking for the Kermit packet to start with
  36. the characters "^A0 S" and "^A0 I" with any number of characters in the
  37. middle and ending with "^M".  The old Kermit does this but the new
  38. Kermit starts the packets with "^A8 S" and "^A8 I" and ends them with
  39. "^M".  The second character of each packet is an "8" instead of an "0"
  40. which breaks the macro.
  41.  
  42. Can anyone explain the change in behavior and is there a way to control
  43. whether a "0" or an "8" is sent?  I haven't found anything in the Kermit
  44. manual that talks about it.  The Kermit in KeaTerm appears to take
  45. either format.  It is just the macro that breaks.
  46.  
  47. Thanks for any help or advice.